home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Views
/
ViewCell
/
CellUpdater.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
357b
|
24 lines
// CellUpdater.h
#ifndef CellUpdater_h
#define CellUpdater_h
#ifndef CellVisitor_h
#include "CellVisitor.h"
#endif
class RegionObject;
class CellUpdater: public CellVisitor
{
private:
const RegionObject& toUpdate;
public:
explicit CellUpdater( const RegionObject& toUpdate );
virtual void Visit( ViewCell&, const Canvas& );
};
#endif